trasnform: Fix print statement
authorBenjamin Otte <otte@redhat.com>
Sat, 2 Mar 2019 03:35:44 +0000 (04:35 +0100)
committerBenjamin Otte <otte@redhat.com>
Mon, 4 Mar 2019 22:15:24 +0000 (23:15 +0100)
We were printing the wrong variable.

gsk/gsktransform.c

index 0e5e37d9b517a7ee0f034ed36344755673cc5c54..f6c4b4a1abe31689139d8776ddb8ea2c93f47c02 100644 (file)
@@ -575,7 +575,7 @@ gsk_translate_transform_print (GskTransform *transform,
   if (self->point.z != 0)
     {
       g_string_append (string, ", ");
-      string_append_double (string, self->point.y);
+      string_append_double (string, self->point.z);
     }
   g_string_append (string, ")");
 }